home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 17 / MacFormat 17 (Spain) / MacFormat 17.bin / Extras / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Get Data Examples < prev    next >
Encoding:
Text File  |  1996-01-24  |  548 b   |  23 lines

  1. tell application "FileMaker Pro"
  2.     get data first cell
  3.     get data last cell
  4.     cells 1 thru 5
  5.     get data every cell
  6.     record 2 as text
  7.     get data middle record
  8.     records 1 thru 4
  9.     every record
  10.     first cell of database 2
  11.     get data last cell of database 2
  12.     cells 1 thru 5 of database 2
  13.     every cell of database "Test1"
  14.     record 2 of database "Test1"
  15.     middle record of last database as list
  16.     records 1 thru 4 of last database as text
  17.     every record of last database
  18.     every record of last database as text
  19.     
  20.     every request
  21.     requests 1 thru 2
  22.     request ID 1
  23. end tell